home *** CD-ROM | disk | FTP | other *** search
/ Champak 86 / (Vol 86) My Disc.iso / Games / restaurante_1422.swf / scripts / frame_1 / DoAction.as
Text File  |  2009-04-29  |  327b  |  14 lines

  1. Stage.showMenu = false;
  2. Stage.scaleMode = "noscale";
  3. stop();
  4. onEnterFrame = function()
  5. {
  6.    var _loc3_ = _root.getBytesLoaded() * 100 / _root.getBytesTotal();
  7.    tf.text = "CHARGEMENT " + Math.floor(_loc3_) + "%";
  8.    if(_loc3_ == 100)
  9.    {
  10.       delete this.onEnterFrame;
  11.       _root.gotoAndStop("intro");
  12.    }
  13. };
  14.